From b7daa6b4117f8605e4c05ce13cd526db46e0b7f5 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Wed, 6 Dec 2000 11:29:17 +0000 Subject: [PATCH] (move_it_by_lines): Fix paren typo. --- src/xdisp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xdisp.c b/src/xdisp.c index 41b234dbf9e..0e761ada607 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -5075,7 +5075,7 @@ move_it_by_lines (it, dvpos, need_y_p) { int shortage = 0, charpos; - if (FETCH_BYTE (IT_BYTEPOS (*it) == '\n')) + if (FETCH_BYTE (IT_BYTEPOS (*it)) == '\n') charpos = IT_CHARPOS (*it) + 1; else charpos = scan_buffer ('\n', IT_CHARPOS (*it), 0, dvpos, -- 2.30.2